home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WMP 9.xpl < prev    next >
Text File  |  2003-08-04  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Program Options\Built in Windows Apps\Windows Media Player"
  5. "UIPATH 2"="Internet\Windows Media Player"
  6. "NAME"="Recent File List Enabled"
  7. "VERSION"="1.01"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable Recent File List"
  10. "DESCRIPTION 1"="Windows Media Player normally adds all played URLs and file to it's recent file list."
  11. "DESCRIPTION 2"="If you do not wish this to happen, disable this setting."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Thanks to CptSiskoX for tip & settings."
  16.  
  17. sP="HKCU\Software\Microsoft\MediaPlayer\Preferences\AddToMRU" 'bnry=01=enablesending; 00=disablesending
  18.  
  19.  
  20. Sub Plugin_Initialize 
  21.  s=RegReadValue(sP)
  22. if IsEmpty(s) or s="01" then
  23.        SetUIElement 1,true
  24.  end if
  25.  
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.   if RegValueExists(sP) then Call RegDeleteValue(sP)
  35.  else
  36.   Call RegWriteValue(sP,"00",3)
  37.  end if
  38.  
  39.  
  40. End Sub
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.  
  46.  
  47.